home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr14 / povsky.zip / POVSKY.POV next >
Text File  |  1995-04-10  |  683b  |  49 lines

  1. #include "colors.inc"
  2. #include "textures.inc"
  3.  
  4. camera {
  5.   location <0, 2, -100>
  6.   direction <0, 0, 1.5>
  7.   up  <0, 1, 0>
  8.   right <4/3, 0, 0>
  9.   look_at <0, 20, 0>
  10. }
  11.  
  12. object {
  13.    light_source {
  14.    <1000, 1000, -1000> 
  15.    color White
  16.    }
  17. }
  18.  
  19. object {
  20.   plane {y, 100}
  21.   texture {
  22.     pigment {Blue_Sky3  scale <1500, 1500, 2000>}
  23.     finish {
  24.       ambient 1
  25.       diffuse 0
  26.       reflection 0
  27.     }
  28.   }
  29.   no_shadow
  30. }
  31.  
  32. object { plane {y, 0}
  33.   texture {
  34.     pigment {color rgb <.25, .3, .25>}
  35.     finish {reflection 0}
  36.   }
  37. }
  38.  
  39. fog {
  40.   color rgb <.5, .5, .8>
  41.   distance 1400
  42. }
  43.  
  44. object {
  45.   sphere {<0, 0, 0> 15}
  46.   texture {Polished_Chrome}
  47. }
  48.  
  49.